home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / tlxref.arc / TLXREF.ASC < prev   
Encoding:
Text File  |  1990-09-27  |  2.4 KB  |  55 lines

  1.  
  2.  
  3.  
  4.                         Using the XREF program with Telix
  5.         
  6.         Written By:  David Postler   
  7.         
  8.         While  making the Round of Board I check in on I found a  Program 
  9.         called XREF.  This is a Public domain program that will create  a 
  10.         variable  cross reference list.  In addition is also  allows  for 
  11.         configuration  to many different languages.  It seemed easy so  I 
  12.         tried to make up a file for Telix salt scripts.  I merely read in 
  13.         the  Salt  manual  and  massaged  the  text  to  fit  the  proper 
  14.         configuration.  Lo and behold it worked.  After asking permission 
  15.         from  Exis I have posted a configuration file for  salt  scripts.  
  16.         In  addition  I  have  written a batch  file  to  run  the  Cross 
  17.         reference.   To  use you simply type:  xf <file name>  and  press 
  18.         enter.   DO  NOT enter the file extension.  The  script  you  are 
  19.         cross referencing must have an extension of "SLT".  
  20.         
  21.         
  22.                                       Notes
  23.         
  24.         Excerpts  from the Telix SALT manual copyright 1990 by Exis  Inc.   
  25.         Used by permission.  Thanks Folks.
  26.         
  27.         I will welcome any suggestions or comments and will try to answer 
  28.         questions.   You  can  find  me on  the  FidoNet  Telix  echo  or 
  29.         occasionally(once/month) on the Telix BBS.  
  30.         
  31.         
  32.         Here is the Batch file to enter:
  33.         
  34.         @echo off
  35.         rem file name xf.bat 
  36.         rem Public Domain written by David Postler  September 25, 1990
  37.         rem This program will the XREF program with a  Telix Script 
  38.         rem and will store the results in a file called with the 
  39.         rem script file name and then XF as the extension.
  40.         rem It will the then do a directory display for your information
  41.         rem Written and tested on a Toshiba 1200HB and DOS 3.3
  42.         rem --------------------------------------------------------
  43.         rem if no file provided then print help info and quit
  44.         if not "%1"=="" goto :start
  45.         echo Enter XF {filename} and no extension to run
  46.         goto :end
  47.         rem --------------------------------------------------------
  48.         :start
  49.         xref %1.slt -ltlx > %1.xf
  50.         dir %1.*
  51.         echo File is referenced.
  52.  
  53.  
  54.  
  55.